Show AllShow All

Patterned Method

Sets a pattern for the specified fill.

expression.Patterned(Pattern)

expression    Required. An expression that returns one of the objects in the Applies To list.

Pattern   Required MsoPatternType. The type of pattern.

Example

This example sets the fill pattern.

With myChart.ChartArea.Fill
    .Patterned msoPatternDiagonalBrick
    .Visible = True
End With